+Sat Feb 20 20:04:48 1999 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkcalendar.c (gtk_calendar_button_press): increment years and
+ months by two not three on double clicks, patch provided by Nick Lamb
+ <njl98r@ecs.soton.ac.uk>.
+
Sat Feb 20 19:44:36 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c: added ::modal argument.
+Sat Feb 20 20:04:48 1999 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkcalendar.c (gtk_calendar_button_press): increment years and
+ months by two not three on double clicks, patch provided by Nick Lamb
+ <njl98r@ecs.soton.ac.uk>.
+
Sat Feb 20 19:44:36 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c: added ::modal argument.
+Sat Feb 20 20:04:48 1999 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkcalendar.c (gtk_calendar_button_press): increment years and
+ months by two not three on double clicks, patch provided by Nick Lamb
+ <njl98r@ecs.soton.ac.uk>.
+
Sat Feb 20 19:44:36 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c: added ::modal argument.
+Sat Feb 20 20:04:48 1999 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkcalendar.c (gtk_calendar_button_press): increment years and
+ months by two not three on double clicks, patch provided by Nick Lamb
+ <njl98r@ecs.soton.ac.uk>.
+
Sat Feb 20 19:44:36 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c: added ::modal argument.
+Sat Feb 20 20:04:48 1999 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkcalendar.c (gtk_calendar_button_press): increment years and
+ months by two not three on double clicks, patch provided by Nick Lamb
+ <njl98r@ecs.soton.ac.uk>.
+
Sat Feb 20 19:44:36 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c: added ::modal argument.
+Sat Feb 20 20:04:48 1999 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkcalendar.c (gtk_calendar_button_press): increment years and
+ months by two not three on double clicks, patch provided by Nick Lamb
+ <njl98r@ecs.soton.ac.uk>.
+
Sat Feb 20 19:44:36 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c: added ::modal argument.
+Sat Feb 20 20:04:48 1999 Tim Janik <timj@gtk.org>
+
+ * gtk/gtkcalendar.c (gtk_calendar_button_press): increment years and
+ months by two not three on double clicks, patch provided by Nick Lamb
+ <njl98r@ecs.soton.ac.uk>.
+
Sat Feb 20 19:44:36 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwindow.c: added ::modal argument.
x = (gint) (event->x);
y = (gint) (event->y);
+ if (event->window == private_data->main_win)
+ gtk_calendar_main_button (widget, event);
+
+ if (event->type != GDK_BUTTON_PRESS)
+ return FALSE; /* Double-clicks? Triple-clicks? No thanks! */
+
if (event->window == private_data->arrow_win[ARROW_MONTH_LEFT])
gtk_calendar_set_month_prev (calendar);
if (event->window == private_data->arrow_win[ARROW_YEAR_RIGHT])
gtk_calendar_set_year_next (calendar);
- if (event->window == private_data->main_win)
- gtk_calendar_main_button (widget, event);
-
return FALSE;
}